home *** CD-ROM | disk | FTP | other *** search
- { ----------------------------------------------
- FINDSTR searches for the first occurrence of S
- in video memory beginning from X,Y.
- ---------------------------------------------- }
- Procedure FindStr ( X : ColumnType;
- Y : RowType;
- S : AnyString;
- Off : Integer;
- var Ecode : Integer ); external 'FindStr.com';
- {
- Ecode = 0 if S is found on screen
- Ecode = 1 if S not found
- if N = 0, cursor placed at S[1]
- if N < 0, cursor placed at Nth position from left end of S
- if N > 0, cursor placed at Nth position from right end of S }